Hello,
Can i send a request URL with a token?
For example:
https://api.pagerduty.com/oncalls?time_zone=UTC&include%5B%5D=escalation_policies&escalation_policy_ids%5B%5D=aaa&schedule_ids%5B%5D=bbb&token=ccc
When i use this command with CURL, It works great:
curl -X GET --header 'Accept: application/vnd.pagerduty+json;version=2' --header 'Authorization: Token token=ttt' 'https://api.pagerduty.com/oncalls?time_zone=UTC&include%5B%5D=escalation_policies&escalation_policy_ids%5B%5D=aaa&schedule_ids%5B%5D=bbb'
When i try to use the same command as a request URL in the browser, I get 404 error page.
Please advise.